home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-28 | 385 b | 23 lines | [TEXT/CWIE] |
- // Closing.h
-
- #ifndef Closing_h
- #define Closing_h
-
- #ifndef ContextUser_h
- #include "ContextUser.h"
- #endif
- #ifndef SavingOption_h
- #include "SavingOption.h"
- #endif
-
- class Closing: public ContextUser
- {
- public:
- void CloseAskingToSave() { Close( SavingOption::ask ); }
-
- virtual bool CanClose() const;
- virtual void Close( SavingOption save = SavingOption::ask ) = 0;
- };
-
- #endif
-